* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition: 0s;
}

html {
	font-size: 16px;
}

body {
	font-size: 16px;
	font-family: Arial, "微软雅黑";
}

a {
	color: #333;
	text-decoration: none;
	outline: none
}

li,
ul,
ol {
	list-style: outside none;
}

.swiper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow-x: hidden;
}

.swiper-slide {
	background-position: center;
	background-size: cover;
}

*::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

*::-webkit-scrollbar-thumb {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: #c3c3c3;
}

*::-webkit-scrollbar-track {
	background-color: transparent;
}

/* 头部 */
header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: #fff;
	height: 78px;
	z-index: 999;
}

.header {
	width: 100%;
	padding: 0 70px;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #e6e6e6;
}

.header .img {
	display: flex;
	align-items: center;
}

.header .img img {
	height: 38px;
}
/* font-size: 1.458332vw; */
.header .img .text{
	border-left: 1px dotted #c6c6c6;
	margin-left: 10px;
	padding-left: 16px;
}
.header .img .text p:nth-child(1){
	color: #000;
	font-size: 1.041667vw;
	letter-spacing: 0.13vw;
}
.header .img .text p:nth-child(2){
	color: #000;
	font-size: 1.041667vw;
}

.nav_r {
	display: flex;
	align-items: center;
	transition: all .5s;
}

.nav_uls {
	display: flex;
	align-items: center;
	justify-self: center;
	white-space: nowrap;
}

.nav_uls>li {
	width: auto;
	padding: 0px 10px;
	position: relative;
}

.nav_uls li h2 a {
	display: block;
	font-weight: normal;
	font-size: 1rem;
	color: #000;
	padding: 0px 20px;
	height: 78px;
	display: flex;
	align-items: center;
	position: relative;

}

.search {
	margin-left: 20px;
	cursor: pointer;
}

.tel img {
	margin-right: 5px;
}

.tel a {
	color: #0052be;
	font-size: 1.4375rem;
	font-weight: bold;
}
.nav_uls2 {
	position: absolute;
	top: 77px;
	left: 50%;
	transform: translate(-50%, -0%);
	width: 100%;
	padding: 22px 10px 0;
	border-top: 2px solid #0052be;
	background-color: #fff;
	box-shadow: 0px 0px 10px -3px #ccc;
	opacity: 0;
	display: none;
}

.nav_uls2 li {
	text-align: center;
	display: block;
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
}

.nav_uls2 li a {
	font-size: 16px;
	color: #333;
}

.nav_uls2 li a:hover {
	color: #000;
	text-decoration: underline;
}

.nav_uls>li:hover h2 a::after {
	content: "";
	width: 100%;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: -1px;
	height: 2px;
	background-color: #0052be;
}

.nav_uls>li:hover .nav_uls2 {
	opacity: 1;
	display: block;
	transition: opacity 0.5s;
	
}
.nav_main{
	transition: all 0.5s;
}
/* 头部搜索 */
.search_form {
	display: flex;
	align-items: center;
	position: relative;
	display: none;
	transition: all .5s;
}

.search_form input {
	width: 100%;
	height: 42px;
	border: 1px solid #d4d4d4;
	line-height: 42px;
	padding-left: 20px;
	outline: none;
	font-size: 16px;
	padding-right: 50px;
	background-color: #fff;

}

.search_form button {
	border: none;
	position: none;
	margin: none;
	outline: none;
	background: none;
	cursor: pointer;
	position: absolute;
	right: 28px;
	top: 50%;
	transform: translate(-0,-50%);
	color: #86807f;
	text-decoration: none;
	margin: 0 !important;
	width: 42px;
	height: 42px;
}

.search_form div {
	cursor: pointer;
	font-size: 30px;
	color: #666;
	margin-left: 10px;
	position: relative;
	width: 20px;
	height: 42px;
}
.search_form div::after{
	content: "——";
	position: absolute;
	font-size: 12px;
	top: 50%;
	left: 50%;
	color: #333;
	display: block;
	transform: rotate(45deg) translate(-50%,-50%);
	transform-origin: left top;
}
.search_form div::before{
	content: "——";
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 12px;
	color: #333;
	display: block;
	transform: rotate(135deg) translate(-50%,-50%);
	transform-origin: left top;
}
.search_form div:hover{
	color: #000;
}
/* 头部pc端屏蔽移动端 */
.w1400{
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
}
.nav_rs{
	display: none;
}
.flex{
	display: flex;
	align-items: center;
	height: 60px;
}
.tel{
	display: flex;
	align-items: center;
	}
.mian_nav_uls>li h2 span{
	display: none;
	}
.nav_main.on{
	transform: scale(0);
}
.nav_r.on{
	transform: scale(0);
	display: none;
}
.search_form.on{
	display: flex;
}
.mian_nav{
	display: none;
}
/* 首页-banner */
.main_top{
	margin-top: 79px;
}
.margin_top{
	margin-top: 65px;
}
.padding_top{
	padding-top: 80px;
}
.index1 .swiper-slide{
	position: relative;
}
.index1 .swiper-slide img{
	display: block;
	width: 100%;
	min-height: 250px;
	object-fit: cover;
}
.index1 .text{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.index1 .text h2{
	font-size: 3.5rem;
	font-weight: bold;
	line-height: 1.7;
	color: #fff;
	padding-bottom: 8px;
}
.index1 .text p{
	font-size: 1.5625rem;
	line-height: 1.7;
	color: #fff;
}
.index1 .text div{
	display: flex;
	justify-content: flex-start;
	margin-top: 36px;
}
.index1 .text div a{
	display: block;
	font-size: 0.875rem;
	color: #fff;
	border: 1px solid #cccccc;
	border-radius: 30px;
	width: 112px;
	transition: background 1s;
	text-align: center;
	padding: 10px;
}
.index1 .text div a:hover{
	background-color: #0052be;
	border: 1px solid #0052be;
}
/* 首页-服务范围 */
.index2 .an{
	max-width: 1430px;
}
.index2 h2{
	color: #333;
	font-size: 2.125rem;
	position: relative;
	line-height: 1.7;
	text-align: center;
}
.index2 h2::after{
	content: "";
	width: 42px;
	height: 2px;
	background-color: #0052be;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translate(-50%,0);
}
.pr_uls{
	display: flex;
	margin-top: 45px;
	justify-content: center;
}
.pr_uls li{
	padding: 8px 25px;
	width: auto;
	display: inline-block;
	color: #333;
	cursor: pointer;
	margin: 0 10px;
	border-radius: 30px;
	border: 1px solid #cccccc;
	transition: background 1s;
}
.pr_uls li.on,.pr_uls li:hover{
	background-color: #0052be;
	color: #fff;
	border: 1px solid #0052be;
}

.pr_text{
	margin-top: 60px;
}
.pr_ul_2{
	display: none;
}
.pr_ul_3{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.pr_ul_3 li{
	width: auto;
	margin: 0 15px;
	margin-bottom: 30px;
}
.pr_ul_3 li a{
	display: block;
	overflow: hidden;
	position: relative;
}
.pr_ul_3 li a img{
	display: block;
	max-width: 100%;
	transition: transform 0.5s;
}
.pr_ul_3 li a .text{
	position: absolute;
	bottom: 30px;
	left: 30px;
	width: calc(100% - 60px);
}
.pr_ul_3 li a .text h3{
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	padding-bottom: 10px;
}
.pr_ul_3 li a .text p{
	color: #a3a4a5;
	font-size: 1.125rem;
	line-height: 1;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	
}
.pr_ul_3 li a:hover img{
	transform: scale(1.1);
}
.pr_ul_3 li a:hover .text p{
	color: #fff;
}
/* 首页-新闻中心 */
.index3{
	background-color: #f5f5f5;
}
.index3 h2{
	color: #333;
	font-size: 2.125rem;
	position: relative;
	line-height: 1.7;
	text-align: center;
}
.index3 h2::after{
	content: "";
	width: 42px;
	height: 2px;
	background-color: #0052be;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translate(-50%,0);
}
.index3 .uls{
	margin-top: 90px;
	display: flex;
	flex-wrap: wrap;
}
.index3 .uls>li{
	width: calc(50% - 20px);
	padding: 0 10px;
}
.index3 .uls>li:first-child{
	margin-right: 20px;
}
.index3 .uls>li:last-child{
	margin-left: 20px;
}
.index3 .uls li .text{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-items: stretch;
}
.index3 .uls li .text .img{
	width: 150px;
	height: 100px;
	overflow: hidden;
}
.index3 .uls li .text .txt{
	width: calc(100% - 160px);
	padding: 0 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.index3 .uls li .text .txt h2{
	font-size: 1.125rem;
	font-weight: bold;
	line-height: 1.7;
	color: #333;
	text-align: left;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.index3 .uls li .text .txt p{
	font-size: 0.875rem;
	display: -webkit-box;
	line-height: 1.7;
	color: #333;
	text-align: justify;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.index3 .uls li .text .txt .itemsss{
	font-size: 0.875rem;
	color: #666;
	margin-top: 5px;
}
.index3 .uls li ul{
	width: 100%;
	margin-top: 30px;
}
.index3 .uls li ul li{
	width: calc(100% - 16px);
	list-style: disc;
	margin-left: 16px;
}
.index3 .uls li ul li::marker{
	color: #d4d4d4;
	font-size: 20px;
}
.index3 .uls li ul li a{
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.index3 .uls li ul li a p{
	width: calc(100% - 50px);
	color: #333;
	font-size: 1rem;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.index3 .uls li ul li a span{
	color: #a2a2a2;
	font-size: 1rem;
	white-space: nowrap;
}
.index3 .uls li ul li a:hover p{
	color: #0052be;
}
.index3 .uls li ul li a:hover span{
	color: #000;
}
.index3 .uls li .text .img img{
	width: 100%;
	transition: transform 0.5s;
	object-fit: cover;
	height: 100%;
}
.index3 .uls>li a:hover .text .img img{
	transform: scale(1.1);
}
.index3 .uls li a:hover .text .txt h2{
	color: #0052be;
}
.index3 .uls li a:hover .text .txt p{
	color: #000;
}
.news_btn{
	margin-top: 50px;
	padding-bottom: 90px;
	display: flex;
	justify-content: center;
}
.news_btn a{
	display: block;
	width: 170px;
	text-align: center;
	font-size: 1rem;
	border: 1px solid #101010;
	color: #101010;
	padding: 9px 10px;
	transition: background 1s;
}
.news_btn a:hover{
	border: 1px solid #0052be;
	background-color: #0052be;
	color: #fff;
}
/* 底部 */
.footer_1{
	background-color: #1b1b1b;
	padding: 70px 0 55px;
}
.footer_1 .an{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer_uls{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% - 230px);
}
.footer_1 .img{
	width: 210px;
}
.footer_1 .img img{
	width: 120px;
	height: 120px;
	margin-right: 90px;
}
.footer_uls>li{
	width: auto;
	padding: 0 10px;
	margin-right: 8%;
}
.footer_uls li h2{
	display: flex;
	align-items: center;
	font-weight: normal;
	padding-bottom: 30px;
	position: relative;
}
.footer_uls li h2 p{
	font-size: 18px;
	color: #fff;
	line-height: 1.7;
	position: relative;
	left: 30px;
	/* transform: translate(100%,0); */
}
.footer_uls li h2 img{
	position: relative;
	margin-right: 15px;
	right: 100%;
	transform: translate(30px,0);
}
.footer_uls li ul li{
	padding: 0 10px 8px 30px;
}
.footer_uls li ul li a{
	color: #fff;
	font-size: 14px;
	line-height: 1.7;
}
.footer_uls li ul li a:hover{
	color: #0052be;
}
.footer_2{
	padding: 24px 0;
	background-color: #000000;
	text-align: center;
}
.footer_2 p{
	font-size: 0.875rem;
	line-height: 1.7;
	color: #757575;
}
.footer_2 p a{
	font-size: 0.875rem;
	line-height: 1.7;
	color: #757575;
}
.footer_2 p a:hover{
	color: #fff;
}
/* 子页面-banner */
.banners{
	position: relative;
}
.banners img{
	width: 100%;
	display: block;
	margin: 0 auto;
	min-height: 150px;
	object-fit: cover;
}
.banners .text{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.banners .text h2{
	line-height: 1.7;
	color: #fff;
	font-size: 34px;
	font-weight: normal;
	padding-bottom: 5px;
}
.banners .text p{
	line-height: 1.7;
	color: #fff;
	font-size: 16px;
}
/* 子页面-内部导航 */
.nav_div{
	background-color: #fff;
	border-bottom: 1px solid #dddddd;
	position: absolute;
	height: 62px;
}
.nav_div ul{
	display: flex;
	justify-content: center;
}
.nav_div .swiper-slide{
	display: inline-block;
	width: auto;
}
.nav_div .swiper-slide a{
	display: block;
	padding: 20px 4px;
	margin: 0 10px;
	position: relative;
}
.nav_div .swiper-slide a::after{
	content: "";
	transition: all .5s;
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translate(-50%,0);
	width: 0;
	height: 2px;
	background-color: #0052be;
	z-index: 2;
}
.nav_div .swiper-slide a:hover::after,.nav_div .swiper-slide a.on::after{
	width: 100%;
}
.nav_div.on{
	position: fixed;
	top: 79px;
	z-index: 9;
	left: 0;
	height: 62px;
}
/* 关于我们-内容 */
.about1{
	margin-top: 110px;
	margin-bottom: 70px;
}
.about1 .an>p{
	color: #666;
	font-size: 1.125rem;
	line-height: 1.7;
	padding-bottom: 40px;
}
/* 新闻内部导航 */
.news_nav{
	height: 50px;
	border-bottom: 1px solid #ccc;
}
.news_nav ul{
	display: flex;
}
.news_nav ul li{
	display: inline-block;
	width: auto;
	margin-right: 20px;
}
.news_nav ul li a{
	color: #666;
	font-size: 1rem;
	line-height: 1.7;
	height: 50px;
	line-height: 50px;
	
}
.news_nav ul li a::after{
	content: "";
	transition: all .5s;
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translate(-50%,0);
	width: 0;
	height: 2px;
	background-color: #0052be;
	z-index: 2;
}
.news_nav ul li a:hover::after,.news_nav ul li a.on::after{
	width: 100%;
	color: #333;
}
/* 新闻页-内容 */
.new1{
	margin-top: 50px;
	margin-bottom: 70px;
}
.new1 .an{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.new1 .uls{
	
}
.new1 .text .uls li:first-child{
	border-top: 0px solid #c9c9c9;
}
.new1 .text .uls li{
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #c9c9c9;
	padding: 30px 0;
}
.new1 .text .uls li:last-child{
	padding: 30px 0 0;
}
.new1 .text .uls li .img{
	width: 284px;
	overflow: hidden;
}
.new1 .text .uls li .img img{
	display: block;
	width: 100%;
	transition: 0.5s all;
	height: 55vw;
	max-height: 170px;
	object-fit: cover;
	margin: 0 auto;
	max-width: 284px;
}
.new1 .text .uls li .img:hover img{
	transform: scale(1.1);
}
.new1 .text .uls li .img a{
	position: relative;
}
.new1 .text .uls li .img p{
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
	color: #333;
	background-color: rgba(255,255,255,0.8);
	padding: 5px 10px;
	z-index: 2;
	font-size: 12px;
	white-space: nowrap;
}
.new1 .uls li .txt{
	width: calc(100% - 284px - 30px);
	margin-left: 30px;
}
.new1 .uls li .txt h2{
	font-size: 1.375rem;
	line-height: 1.7;
	color: #333;
	margin-bottom: 10px;
}
.new1 .uls li .txt p{
	font-size: 16px;
	line-height: 1.7;
	color: #666;
	margin: 0 0 10px 0;
}
.new1 .uls li:hover .txt p{
	color: #333;
}
.new1 .uls li .txt span{
	font-size: 16px;
	line-height: 1.7;
	color: #999;
}
.new1 .text{
	width: calc(100% - 33.33% - 30px);
	margin-right: 30px;
}
.new1 .text2{
	width: 33.33%;
}
.new1 .text2 h2{
	font-size: 18px;
	color: #333;
	font-weight: bold;
}
.new1 .text2 a{
	display: flex;
}
.new1 .text2 .img{
	width: 37%;
	max-width: 165px;
	overflow: hidden;
	transition: all .5s;
}
.new1 .text2 .img img{
	width: 100%;
	transition: all .5s;
}
.new1 .text2 .txt2 p{
    font-size: 0.875rem;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
		line-height: 1;
}
.new1 .text2 .txt2 h3{
	line-height: 1.7;
	margin-top: -5px;
	max-height: 90px;
	color: #666;
	font-size: 1.125rem;
	margin-top: 5px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	overflow: hidden;
}
.new1 .text2 .txt2{
	padding-left: 20px;
  width: 63%;
}
.new1 .text2 a:hover .img img{
	transform: scale(1.1);
}
.new1 .text2 .uls li{
	margin-top: 15px;
}
.new1 .text2 a:hover h3{
	color: #333;
}
/* 子页面-分页 */
.page{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 70px;
	align-items: center;
}
.page a{
	width: auto;
	padding: 5px 12px;
	display: inline-block;
	margin: 0 2px;
	font-size: 22px;
}
/* .page a:first-child{
	margin: 0 14px;
	border: 1px solid #a0a0a0;
}
.page a:last-child{
	margin: 0 14px;
	border: 1px solid #a0a0a0;
} */
.page a.active,.page a:hover{
	color: #0052be;
}
/* 新闻详情 */
.news_txts{
	margin-top: 70px;
}
.news_txts h1{
	font-size: 1.75rem;
	line-height: 1.7;
	font-weight: normal;
	text-align: center;
	color: #333;
	padding-bottom: 10px;
}
.news_txts .time{
	font-size: 1rem;
	line-height: 1.7;
	font-weight: normal;
	text-align: center;
	color: #adadad;
}
.new_top{
	padding-bottom: 15px;
	margin-bottom: 50px;
	border-bottom: 1px solid #dddddd;
}
.news_txts img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	padding-bottom: 40px;
}
.news_txts p{
	color: #666;
	font-size: 1.125rem;
	line-height: 1.7;
	padding-bottom: 40px;
}
/* 新闻-面包屑导航 */
.nav_news{
	background-color: #f2f2f2;
	padding: 30px 0 40px;
}
.nav_news .text{
	display: flex;
	align-items: center;
	font-size: 1rem;
	color: #595757;
	line-height: 1.7;
}
.nav_news .text a{
	display: inline-block;
	font-size: 1rem;
	color: #595757;
	line-height: 1.7;
}
.nav_news .text em{
	display: inline-block;
	font-size: 1rem;
	white-space: nowrap;
	color: #595757;
	line-height: 1.7;
	margin: 0 15px;
}
.new_search{
	display: flex;
	align-items: center;
	position: relative;
	transition: all .5s;
	max-width: 540px;
	width: 100%;
}
.new_search input{
	max-width: 540px;
	width: 100%;
	height: 42px;
	border: 1px solid #d4d4d4;
	line-height: 42px;
	padding-left: 20px;
	outline: none;
	font-size: 16px;
	padding-right: 50px;
	background-color: #fff;
}
.new_search button {
    border: none;
    position: none;
    margin: none;
    outline: none;
    background: none;
    cursor: pointer;
    position: absolute;
    right: 1px;
    top: 50%;
    transform: translate(-0,-50%);
    color: #86807f;
    text-decoration: none;
    margin: 0 !important;
    width: 42px;
    height: 42px;
}
.nav_news .an{
	display: flex;
	justify-content: space-between;
	align-content: center;
	padding-bottom: 10px;
	border-bottom: 1px solid #e2e2e2;
}
/* 产品页 */
.product1{
	margin: 80px 0 70px;
}
.product1 .uls{
	display: flex;
	flex-wrap: wrap;
}
.product1 .uls li{
	width: 33.33%;
	padding: 0 15px;
	margin-top: 30px;
}
.product1 .uls li a{
	display: block;
}
.product1 .uls li a .img{
	width: 100%;
	overflow: hidden;
}
.product1 .uls li a .img img{
	display: block;
	margin: 0 auto;
	width: 100%;
	transition: all .5s;
	max-height: 270px;
	height: 55vw;
	width: 100%;
	object-fit: cover;
	max-width: 438px;
	margin: 0 auto;
}
.product1 .uls li a .text{
  width: 100%;
	float: left;
  text-align: left;
  padding: 15px 20px 30px;
  background-color: #f8f8f8;
  position: relative;
  z-index: 2;
  overflow: hidden;
	height: 125px;
}
.product1 .uls li a .text h3{
	font-size: 18px;
	line-height: 1.6;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.product1 .uls li a .text .time{
	position: absolute;
	bottom: 15px;
	color: #666;
	font-size: 1rem;
}
.product1 .uls li a:hover .img img{
	transform: scale(1.1);
}
.product1 .uls li a:hover .text{
	background-color: #f0f0f0;
}
/* 产品详情 */
.product_details1{
	margin-top: 110px;
}
.product_details1 h1{
	font-size: 1.75rem;
	line-height: 1.7;
	font-weight: normal;
	text-align: center;
	color: #333;
	padding-bottom: 10px;
}
.product_details1 .time{
	font-size: 1rem;
	line-height: 1.7;
	font-weight: normal;
	text-align: center;
	color: #adadad;
}
.new_top{
	padding-bottom: 15px;
	margin-bottom: 50px;
	border-bottom: 1px solid #dddddd;
}
.product_details1 img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	padding-bottom: 40px;
}
.product_details1 p{
	color: #666;
	font-size: 1.125rem;
	line-height: 1.7;
	padding-bottom: 40px;
}
.product_btn{
	display: block;
	width: 170px;
	text-align: center;
	font-size: 1rem;
	border: 1px solid #101010;
	color: #101010;
	padding: 9px 10px;
	transition: background 1s;
	margin: 40px auto 0;
}
.product_btn:hover{
	border: 1px solid #0052be;
	background-color: #0052be;
	color: #fff;
}
/* 产品详情页-相关产品 */
.product_details2 .an>h2{
	font-size: 1.75rem;
	font-weight: bold;
	line-height: 1.7;
	text-align: center;
	position: relative;
	margin-bottom: 30px;
}
.product_details2 .an>h2::after{
	content: "";
	width: 42px;
	height: 2px;
	background-color: #0052be;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translate(-50%,0);
}
/* 联系我们 */
.contact{
	padding-top: 80px;
	padding-bottom: 70px;
}
.contact h1{
	color: #333;
	font-size: 2.125rem;
	position: relative;
	line-height: 1.7;
	text-align: center;
}
.contact h1::after {
	content: "";
	width: 42px;
	height: 2px;
	background-color: #0052be;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translate(-50%,0);
}
.contact .uls{
	display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
}
.contact .uls li{
	width: calc(33.33% - 6px);
	margin: 0 3px;
	background-color: #f7f7f7;
	padding: 50px 6% 40px;
}
.contact .uls li img{
	display: block;
	margin: 0 auto;
	transition: all 0.5s;
}
.contact .uls li:hover img{
	transform: scale(1.1);
}
.contact .uls li h3{
	color: #333;
	font-size: 1.125rem;
	line-height: 1.7;
	font-weight: bold;
	text-align: center;
	padding: 25px 0;
}
.contact .uls li p{
	color: #000;
	font-size: 1rem;
	line-height: 1.7;
	font-weight: normal;
	text-align: center;
}
/* 案例详情页 */
.case_details1{
	margin-top: 110px;
	margin-bottom: 70px;
}
.case_details1 h1{
	font-size: 1.75rem;
	line-height: 1.7;
	font-weight: normal;
	text-align: center;
	color: #333;
	padding-bottom: 30px;
}
.case_details1 p{
	color: #666;
	font-size: 1.125rem;
	line-height: 1.7;
	padding-bottom: 20px;
}
.case_details1 table p{
	padding-bottom: 0;
	line-height: 3;
}
/* 资质 */
.honor_uls *{
	box-sizing: border-box;
}
.honor_uls{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	box-sizing: border-box;
}
.honor_uls li{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 49%;
	margin-right: 2%;
	margin-bottom: 40px;
	padding: 20px;
	background-color: #f9f9f9;
}
.honor_uls li:nth-child(2n){
	margin-right: 0%;
}
.honor_uls li .img{
	width: 33%;
	background: url("../images/h5.png") no-repeat center;
	background-size: cover;
	position: relative;
	padding-bottom: 24%;
	cursor: pointer;
}
.honor_uls li .img img{
    width: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	padding: 12px;
}
.honor_uls li .text{
    width: 61%;
    padding-left: 6%;
    box-sizing: border-box;
}
.honor_uls li .text p{
	font-size: 16px;
	color: #333;
	margin-bottom: 10px;
	text-align: left;
}
/* 弹窗 */
.fl_img{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.4);
    z-index: 9999;
}
.fl_img .an{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 80vh;
}
.fl_img .an .img{
	width: 100%;
	height: 100%;
}
.fl_img .an .img img{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: block;
	object-fit: contain;
}


/* 适配 */
@media(min-width:1024px){
	/* 底部 */
	.footer_uls li ul{display: block !important;}
}
@media(max-width:1460px){
	.nav_uls li h2 a{padding: 0 17px;}
}
@media(max-width:1440px){
	/* 内容宽度 */
	.w1400{padding-left: 20px !important;padding-right: 20px !important;}
	/* 头部 */
	/* .header .img p{font-size: 16px;} */
	.header{padding: 0 20px;}
	.nav_uls li h2 a{padding: 0 0px;}
	.tel a{font-size: 1.25rem;}
	.search_form{width: 200px;}
	/* banner */
	.index1 .text{left: 58%;}
	.index1 .text h2{font-size: 46px;}
	.pr_uls li{padding: 8px 15px;}
}
/* 平板 */
@media(max-width:1024px){
	/* 头部 */
	.header{height: 60px;}
	.nav_main{display: none;}
	.mian_btns{display: block;width: 44px;height: 34px;position: relative;float: right;padding: 9px 10px;margin-bottom: 8px;background-color: transparent;background-image: none;border: 1px solid transparent;border-radius: 4px;cursor: pointer;margin-left: 10px;}
	.sr-only{position: absolute;width: 1px;height: 1px;margin: -1px;padding: 0;overflow: hidden;clip: rect(0,0,0,0);border: 0;}
	.icon-bar{position: absolute;top: 50%;left: 50%;margin-left: -11px;margin-top: -1px;background-color: #000;position: static;margin: 0;margin-top: 4px;transform: rotate(0);display: block;width: 22px;height: 2px;border-radius: 1px;}
	.nav_rs{display: block;}
	.mian_nav{position: fixed;top: 0;left: 100%;transition: all 0.5s;z-index: 9999;}
	.nav_r{display: none;}
	.header .img p{font-size: 20px;}
	.header .img .text p:nth-child(1){font-size: 16px;letter-spacing: 2px;}
	.header .img .text p:nth-child(2){font-size: 16px;}
	.tel a{font-size: 20px;}
	.mian_nav{background-color: #f8f8f8;border-top: 1px solid #d4d4d4;width: 100%;height: 100vh;overflow-y: auto;display: block;}
	.search_form2{display: flex;padding: 20px 20px;position: absolute; top: 0;left: 0;width: 100%;background-color: #fff;}
	.search_form button{right: 48px;}
	.mian_nav_uls{margin-top: 82px;padding: 0 20px;}
	.mian_nav_uls>li h2{display: flex;padding: 10px 20px;justify-content: space-between;align-items: center;border-bottom: 1px solid #dfdfdf;}
	.mian_nav_uls>li h2 span{font-size: 26px;font-weight: normal;}
	.mian_nav_uls>li h2 a{font-size: 16px;font-weight: normal;}
	.mian_nav_uls2 li{border-bottom: 1px solid #dfdfdf;}
	.mian_nav_uls2 li a{padding: 10px 40px;display: block;}
	.search_form.on{display: none;}
	.search_form2.on{display: flex;}
	.mian_nav_uls2{display: none;}
	header{height: 60px;}
	/* 首页-banner */
	.main_top{margin-top: 60px;}
	.index1 .text h2{font-size: 32px;}
	.index1 .text p{font-size: 20px;}
	.index1 .text div{margin-top: 25px;}
	/* 底部 */
	.footer_1 .img{width: 100%;}
	.footer_1 .img img{margin: 10px auto 0;display: block;}
	.footer_uls{width: 100%;}
	.footer_uls>li{width: 100%;}
	.footer_uls li h2 img{position: static;}
	.footer_uls li h2 p{position: static;}
	.footer_uls li h2{justify-content: space-between;padding-bottom: 10px;}
	.footer_uls li h2 img{margin: 0 0 0 10px;}
	.footer_uls li ul li{padding-left: 20px;}
	.footer_uls li ul{display: none;}
	/* 子页面-内部导航 */
	.nav_div ul{justify-content: flex-start;}
	.nav_div.on{top: 60px;}
	/* 新闻页 */
	.new1 .text{width: 100%;margin: 0;}
	.new1 .text2{width: 100%;}
	/* 分页 */
	.page{margin: 15px 0;}
	.page a{font-size: 16px;padding: 5px 9px;}
	/* 产品页 */
	.product1 .uls li{width: 50%;}
	/* 联系我们 */
	.contact .uls li{padding: 50px 3% 40px;}
	/* 案例详情页 */
	/* 资质 */
	.honor_uls li{width: 100%;margin-right: 0;}
	.honor_uls li .text p{font-size: 14px;}
}
/* 手机端 */
@media(max-width:768px){
	/* 头部 */
	.header .img .text{display: none;}
	/* 首页-banner */
	.index1 .text h2{font-size: 20px;padding-bottom: 5px; text-align: center;}
	.index1 .text p{font-size: 1rem;text-align: center;}
	.index1 .text{left: 50%;}
	.index1 .text div{margin-top: 15px;justify-content: center;}
	/* 首页-服务范围 */
	.margin_top{margin-top: 40px;}
	.padding_top{padding-top: 40px;}
	.index2 h2{font-size: 1.25rem;}
	.pr_uls{margin-top: 20px;justify-content: flex-start;}
	.pr_uls li{padding: 4px 10px;margin: 0 5px;font-size: 14px;}
	.pr_text{margin-top: 20px;}
	.pr_ul_3 li{width: 100%;}
	.pr_ul_3 li a img{width: 100%;}
	.pr_ul_3 li a .text{left: 20px;bottom: 20px;width: calc(100% - 40px);}
	.pr_ul_3 li a .text h3{font-size: 1rem;}
	.pr_ul_3 li a .text p{font-size: 14px;}
	.index1 .text div a{width: 100px;padding: 8px;}
	/* 首页-新闻中心 */
	.index3{margin-top: 0;}
	.index3 h2{font-size: 20px;}
	.index3 .uls{margin-top: 20px;}
	.index3 .uls>li{width: 100%;margin: 0 0 10px !important;}
	.index3 .uls li .text .img{width: 100%;height: auto;}
	.index3 .uls li .text .txt{width: 100%;padding-top: 5px;}
	.index3 .uls li .text .txt h2{font-size: 1rem;}
	.index3 .uls li ul{margin-top: 15px;}
	.index3 .uls li ul li a{margin-bottom: 15px;}
	.index3 .uls li ul li a p{font-size: 0.875rem;}
	.index3 .uls li ul li a span{font-size: 0.875rem;}
	.news_btn{margin-top: 10px;padding-bottom: 40px;}
	.news_btn a{width: 120px;font-size: 0.875rem;padding: 6px 10px;}
	/* 底部 */
	.footer_1{padding: 40px 0 30px;}
	.footer_2{padding: 15px 0;}
	/* 子页面-banner */
	.banners .text h2{font-size: 1.25rem;text-align: center;}
	.banners .text p{text-align: center;}
	/* 子页面-内部导航 */
	.nav_div{height: 50px;padding: 0 20px;overflow: hidden;}
	.nav_div.on{height: 50px;}
	.nav_div .swiper-slide a{padding: 14px 4px;}
	.nav_div ul{padding: 0 !important;}
	/* 关于我们 */
	.about1{margin-top: 90px;margin-bottom: 40px;}
	.about1 .an>p{font-size: 1rem;padding-bottom: 15px;}
	/* 新闻页-内部导航 */
	.news_nav{height: 32px;}
	.news_nav ul li a{height: 32px;line-height: 32px;font-size: 14px;}
	/* 新闻页 */
	.new1{margin: 40px 0;}
	.new1 .text .uls li .img{width: 100%;}
	.new1 .uls li .txt{width: 100%;margin-left: 0;}
	.new1 .uls li .txt{padding: 15px 0 0;}
	.new1 .uls li .txt h2{margin-bottom: 5px;font-size: 1rem;}
	.new1 .uls li .txt p{font-size: 0.875rem;}
	.new1 .uls li .txt span{font-size: 0.75rem;}
	.new1 .text .uls li{border: 0;}
	.new1 .text .uls li{padding: 15px 0 10px;}
	.new1 .text .uls li:last-child{padding: 15px 0 0;}
	.new1 .text2 h2{font-size: 1rem;}
	.new1 .text2 .txt2 p{font-size: 12px;}
	.new1 .text2 .txt2 h3{font-size: 15px;}
	/* 新闻详情 */
	.news_txts{margin-top: 15px;}
	.new_top{padding-bottom: 10px;margin-bottom: 20px;}
	.news_txts h1{font-size: 1.25rem;padding: 0 0 5px;}
	.news_txts img{padding-bottom: 15px;}
	.news_txts p{font-size: 16px;padding-bottom: 15px;}
	/* 新闻-面包屑导航 */
	.nav_news{padding: 15px 0;}
	.new_search{margin: 0 auto;}
	/* 产品页 */
	.product1{margin: 50px 0 40px;}
	.product1 .uls li{width: 100%;padding: 0;margin-top: 20px;}
	.product1 .uls li a .text h3{font-size: 1rem;}
	/* 产品详情 */
	.product_details1{margin-top: 90px;}
	.product_details1 h1{font-size: 1.25rem;padding: 0 0 5px;}
	.product_details1 img{padding-bottom: 15px;}
	.product_details1 p{font-size: 1rem;padding-bottom: 15px;}
	.product_details2{margin: 20px 0 40px;}
	.product_details2 .an>h2{font-size: 20px;margin-bottom: 0px;}
	.product_btn{width: 120px;font-size: 0.875rem;padding: 6px 10px;margin-top: 20px;}
	/* 联系我们 */
	.contact{padding: 40px 0;}
	.contact h1{font-size: 20px;}
	.contact .uls{margin-top: 15px;}
	.contact .uls li{width: 100%;padding: 20px;margin: 0 0 10px;}
	/* 案例详情页 */
	.case_details1{margin-top: 90px;margin-bottom: 40px;}
	.case_details1 h1{font-size: 1.25rem;padding-bottom: 10px;}
	.case_details1 p{font-size: 1rem;padding-bottom: 15px;}
	/* 资质 */
	.honor_uls li{margin-bottom: 10px;padding: 10px;}
	.honor_uls li .img{width: 100%;padding-bottom: 66%;}
	.honor_uls li .img img{padding: 21px 20px;}
	.honor_uls li .text{width: 100%;padding-top: 20px;padding-left: 0;}
}
/* 修改-分页 */
.pagination{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.pagination .prev span, .pagination .prev a, .pagination .next a, .pagination .next span{
	border: 1px solid #a0a0a0;
	width: auto;
	padding: 5px 12px;
	display: inline-block;
	margin: 0 2px;
	font-size: 22px;
	margin: 0 14px;
	border: 1px solid #a0a0a0;
}
.pagination li.active a,.pagination li a:hover{
	color: #0052be;
}
@media (max-width:1024px){
	.pagination li a{font-size: 16px;padding: 5px 9px;}
	.pagination .prev span, .pagination .prev a, .pagination .next a, .pagination .next span{font-size: 16px;padding: 5px 9px;}
}

/*25-8-11*/
.header .img img {
    height: 24px;
    display: block;
    margin-bottom: 4px;
}
.header .imgs img:nth-child(2){
	height: 30px;
}
.header .img .text p:nth-child(2) {
    letter-spacing: 1em;
}